-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Delete redundant vesion.py #355
Conversation
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## dev_master #355 +/- ##
===========================================
Coverage 75.13% 75.14%
===========================================
Files 59 58 -1
Lines 7999 7993 -6
===========================================
- Hits 6010 6006 -4
+ Misses 1989 1987 -2 ☔ View full report in Codecov by Sentry. |
Looks good 👍 |
Not sure everything with the versioning actually works as intended. (Intended by us I mean; everything probably works as intended by the tooling.) See this scenario with a semi fresh ScopeSim clone and semi fresh environment, without ScopeSim installed. Alternating between an empty directory and ScopeSim clone: Empty directory, as expected:
In fresh clone install an old version of ScopeSim. More realistic scenario is installing
In empty directory, as expected again::
These files are installed:
In git clone:
In empty directory:
People are surely going to install ScopeSim in this way. So maybe we should have |
I created #359 to discuss reading the versions, as the issue is not specific to this PR. |
After discussing with @astronomyk , we decided that the
__version__
variable in__init__.py
is sufficient, similar to what we recently did in another package.